File tree Expand file tree Collapse file tree 5 files changed +17
-15
lines changed
Expand file tree Collapse file tree 5 files changed +17
-15
lines changed Original file line number Diff line number Diff line change 1- # Linked List [ ![ Build Status] ( http://img.shields.io/travis/smallstoneapps/linked-list.svg?style=flat-square )] ( https://travis-ci.org/smallstoneapps/linked-list/ )   ; [ ![ npm (scoped)] ( https://img.shields.io/npm/v/@smallstoneapps /linked-list.svg?maxAge=2592000&style=flat-square )] ( https://www.npmjs.com/package/@smallstoneapps /linked-list )   ; [ ![ MIT License] ( http://img.shields.io/badge/license-MIT-lightgray.svg?style=flat-square )] ( ./LICENSE )
1+ # Linked List [ ![ Build Status] ( http://img.shields.io/travis/smallstoneapps/linked-list.svg?style=flat-square )] ( https://travis-ci.org/smallstoneapps/linked-list/ )   ; [ ![ npm (scoped)] ( https://img.shields.io/npm/v/@rebble /linked-list.svg?maxAge=2592000&style=flat-square )] ( https://www.npmjs.com/package/@rebble /linked-list )   ; [ ![ MIT License] ( http://img.shields.io/badge/license-MIT-lightgray.svg?style=flat-square )] ( ./LICENSE )
22
33A simple linked list implementation for Pebble apps and watchfaces.
44
@@ -9,7 +9,7 @@ A simple linked list implementation for Pebble apps and watchfaces.
99To install the package to your app, use the pebble tool:
1010
1111```
12- pebble package install @smallstoneapps /linked-list
12+ pebble package install @rebble /linked-list
1313```
1414
1515## Usage
@@ -18,7 +18,7 @@ pebble package install @smallstoneapps/linked-list
1818// This is not a complete example, but should demonstrate the basic usage of
1919// the Linked List library.
2020
21- #include < @smallstoneapps /linked-list/linked-list.h>
21+ #include < @rebble /linked-list/linked-list.h>
2222
2323LinkedRoot* root;
2424
Original file line number Diff line number Diff line change 11{
2- "name" : " @smallstoneaps /linked-list-demo" ,
3- "version" : " 1.1 .0" ,
2+ "name" : " @rebble /linked-list-demo" ,
3+ "version" : " 1.2 .0" ,
44 "author" : " Matthew Tole" ,
55 "description" : " Demo app to show the basic usage of the linked-list package" ,
66 "main" : " src/demo.c" ,
1010 "license" : " MIT" ,
1111 "private" : true ,
1212 "dependencies" : {
13- "@smallstoneapps /linked-list" : " ../"
13+ "@rebble /linked-list" : " ../"
1414 },
1515 "keywords" : [
1616 " pebble-app"
3535 " basalt" ,
3636 " chalk" ,
3737 " diorite" ,
38- " emery"
38+ " emery" ,
39+ " flint"
3940 ],
4041 "capabilities" : []
4142 }
Original file line number Diff line number Diff line change 11#include <pebble.h>
2- #include <@smallstoneapps /linked-list/linked-list.h>
2+ #include <@rebble /linked-list/linked-list.h>
33
44static void init (void );
55static void deinit (void );
Original file line number Diff line number Diff line change 11{
2- "name" : " @smallstoneapps /linked-list" ,
3- "version" : " 1.4 .0" ,
2+ "name" : " @rebble /linked-list" ,
3+ "version" : " 1.5 .0" ,
44 "description" : " Pebble library for doing linked lists" ,
55 "main" : " src/c/linked-list.c" ,
66 "directories" : {
1414 },
1515 "repository" : {
1616 "type" : " git" ,
17- "url" : " git+https://github.com/smallstoneapps /linked-list.git"
17+ "url" : " git+https://github.com/pebble-dev /linked-list.git"
1818 },
1919 "author" :
" Matthew Tole <[email protected] >" ,
2020 "license" : " MIT" ,
2121 "bugs" : {
22- "url" : " https://github.com/smallstoneapps /linked-list/issues"
22+ "url" : " https://github.com/pebble-dev /linked-list/issues"
2323 },
24- "homepage" : " https://github.com/smallstoneapps /linked-list#readme" ,
24+ "homepage" : " https://github.com/pebble-dev /linked-list#readme" ,
2525 "pebble" : {
2626 "projectType" : " package" ,
2727 "sdkVersion" : " 3" ,
3030 " basalt" ,
3131 " chalk" ,
3232 " diorite" ,
33- " emery"
33+ " emery" ,
34+ " flint"
3435 ]
3536 },
3637 "files" : [
Original file line number Diff line number Diff line change 22#include "unit.h"
33#include "linked-list.h"
44
5- #define VERSION_LABEL "1.4 .0"
5+ #define VERSION_LABEL "1.5 .0"
66
77// Colour code definitions to make the output all pretty.
88#define KNRM "\x1B[0m"
You can’t perform that action at this time.
0 commit comments